-
Notifications
You must be signed in to change notification settings - Fork 562
Rails 6.1 support and bit type bug fix #854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@wpolicarpo Can you help us doing a merge of this PR and create a new release? |
…5.2, so we don't need to it anymore
|
@Circuit8 can you please rebase your branch against |
|
@wpolicarpo sure thing, should be sorted now. |
|
@Circuit8 You did not rebase this branch onto main. You merged main into this branch. From #861 (comment)
|
|
The remaining changes in this PR were superseded by #875 so I'm closing this off. |
This expands on #853 by fixing the test suite.
We also discovered that if a column is a "bit" type, and it has a default value of
true, we would get an error from active record, as it seems that in the current version it is expecting boolean columns to be cast to"1"for true values, rather thantrue. This PR fixes that aswell.